Stored Procedures [dbo].[BAEAccountPendingUpdate]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@AccountPendingpIDint4
SQL Script
create procedure [dbo].[BAEAccountPendingUpdate] @AccountPendingpID int as
UPDATE AccountPending SET RecordAdded = 1 WHERE AccountPendingID = @AccountPendingpID

GO
Uses